INtime SDK Help
getch, getche

The getch function reads a single character from the console with no echo.

The getche function reads a single character from the console with echo.

#include <conio.h>

int getch(void);
int getche(void);

Remarks

Getch and getche are implemented using the INtime console functions.

Return Values

The integer value of the character read.

Requirements

Versions Defined in Include Link to
INtime 6.0 intime/rt/include/conio.h conio.h clib.lib
See Also